home *** CD-ROM | disk | FTP | other *** search
/ Canadian Geographic Explorer / Canadian Geographic Explorer.iso / pc / riddler.dxr / 00029_Play Round looper script.ls < prev    next >
Encoding:
Text File  |  1996-10-03  |  354 b   |  15 lines

  1. on exitFrame
  2.   global gVoiceChannel, gSoundFXChannel, gMusicChannel, gAnimObj, gCategory
  3.   if soundBusy(gVoiceChannel) then
  4.     go(the frame)
  5.   else
  6.     sound stop gSoundFXChannel
  7.     if the myFrame of gAnimObj = (the myNumOfFrames of gAnimObj - 1) then
  8.       set the actorList to []
  9.       go("Cat1")
  10.     else
  11.       go(the frame)
  12.     end if
  13.   end if
  14. end
  15.